Important
--------
to download the new version or more web applications 
https://ramy.pro
----------
Help
---------------
To modify the playlist or to add or remove tracks, use “list.js” file by modifying “playlist” array.

Example:
playlist[0] = new Array();
playlist[0].title = 'track title';
playlist[0].file = 'audio file dir/file name. extension';
playlist[0].poster = 'image file dir/image file name. extension';
Don’t forget to increase the array index number one time with every track.

playlist[0] = new Array();
playlist[0].title = 'Reflection';
playlist[0].file = 'files/001.mp3';
playlist[0].poster = 'images/001.jpg';

playlist[1] = new Array();
playlist[1].title = 'The wanderer';
playlist[1].file = 'files/002.mp3';
playlist[1].poster = 'images/002.jpg';
Notice: you have to set “main_dir” element in “script.js” file with the full path of the directory of the audio files.

Example:
change main_dir:”http://ramy.pro/music/” to main_dir:”your full dir path here”

main_dir:"http://ramy.pro/music/",
